string str = "10s";
int x = Convert.ToInt32(str);
Console.WriteLine(x);
string str = "100";
int x = Int32.Parse(str); // or int.Parse();
Console.WriteLine(x);
int x = 0;
Int32.TryParse(TextBoxD1.Text, out x);